type github.com/jackc/pgx/v5/pgtype.int64Wrapper

9 uses

	github.com/jackc/pgx/v5/pgtype (current package)
		builtin_wrappers.go#L86: type int64Wrapper int64
		builtin_wrappers.go#L88: func (w int64Wrapper) SkipUnderlyingTypePlan() {}
		builtin_wrappers.go#L90: func (w *int64Wrapper) ScanInt64(v Int8) error {
		builtin_wrappers.go#L95: 	*w = int64Wrapper(v.Int64)
		builtin_wrappers.go#L100: func (w int64Wrapper) Int64Value() (Int8, error) {
		pgtype.go#L613: 		return &wrapInt64ScanPlan{}, (*int64Wrapper)(target), true
		pgtype.go#L694: 	return plan.next.Scan(src, (*int64Wrapper)(dst.(*int64)))
		pgtype.go#L1470: 		return &wrapInt64EncodePlan{}, int64Wrapper(value), true
		pgtype.go#L1553: 	return plan.next.Encode(int64Wrapper(value.(int64)), buf)